home *** CD-ROM | disk | FTP | other *** search
/ Imagine! / Imagine (Wayzata Technology) (1995).iso / mac / Windows / AMazing.dir / 00001_Script_1 next >
Text File  |  1995-08-24  |  788b  |  37 lines

  1. --StartMovie 
  2.  
  3. on startMovie
  4.   continue
  5. end startMovie
  6.  
  7. --checkCursor, this changes the left and right cursors when over the hot spots
  8. on checkCursor
  9.   set forwardCursor to [8,9] 
  10.   set leftCursor to [10,11]
  11.   set rightCursor to [12,13]
  12.   if rollover (7) then
  13.     set the cursor of sprite 7 to forwardCursor
  14.   else
  15.     if rollover (8) then
  16.       set the cursor of sprite (8) to leftcursor
  17.     else
  18.       if rollover (9) then
  19.         set the cursor of sprite (9) to rightcursor
  20.       end if
  21.     end if
  22.   end if
  23.   updateStage 
  24. end
  25.  
  26. --mapCursor, this handler returns the cursor to the arrow when the map is in view
  27. on mapCursor
  28.   set the cursor of sprite 7 to -1
  29.   set the cursor of sprite 8 to -1
  30.   set the cursor of sprite 9 to -1
  31.   updateStage
  32. end
  33.  
  34.  
  35.  
  36.  
  37.